home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASP Advantage 1994 2nd Q2
/
The Association of Shareware Professionals - The Official ASP Advantage (2nd Quarter)(1994).bin
/
files
/
progming
/
bt
/
dice.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1992-10-05
|
576 b
|
10 lines
1 ' dice.bas
10 pts = 0
20 die.roll = int(rnd*6) + 1 ' random number bet 1 and 6
30 while die.roll <> 6 and pts < 20
40 pts = pts + die.roll
50 die.roll = int(rnd*6) + 1
60 wend
70 if die.roll = 6 then pts = 0
80 if pts>0 then print "You made";pts;"points" else print"You lost"